home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / internet / irc_i_dodatki / irc_convert / pconvert.amirx < prev   
Text File  |  1997-04-24  |  504b  |  27 lines

  1. /* PConvert.AMIRX -- Public Temp Convertor for AmIRC
  2. \\ written by Michael Brown
  3. //
  4. \\ Put this script in PROGDIR:rexx/ and add this as an alias with the
  5. // command:  "/alias pconvert /rx pconvert %p"
  6. \\
  7. */
  8.  
  9. PARSE ARG ARGS
  10. OPTIONS RESULTS
  11. fname = "Ram:temp"
  12. if ARGS = "" then do
  13.    "echo P="d2c(27)"b«Error» Usage: RX Convert <temp><C/F>"
  14. exit
  15. end
  16.  
  17. address command "c:convert " ARGS ">ram:temp"
  18.  
  19. call open("Input", fname, 'R')
  20.  
  21. xx = readln("Input")
  22.    "Say «Results» "xx
  23. call close("Input")
  24.    exit
  25. end
  26.  
  27.